home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Dev
/
GameboyDev
/
GBDK
/
lib
/
strlen.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-03-29
|
139b
|
14 lines
#include <string.h>
/* Return length of string */
BYTE strlen(const char *s)
{
UBYTE i;
i = 0;
while(*s++)
i++;
return i;
}